home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD School House 10
/
CD School House - Education and Games (10.0) - Wayzata Technology (1995).iso
/
mac
/
DOS
/
MISC
/
ESPTEST
/
ESPDRIVR.PAS
next >
Wrap
Pascal/Delphi Source File
|
1994-05-20
|
708b
|
24 lines
{***********************************************************}
{** Copyright 1991 by Phil Mosier **}
{***********************************************************}
Unit ESPDRIVR;
{***********************************************************}
{** Unit to accompany ESPTEST.PAS. This unit links the **}
{** BGI graphics driver into a single TPU file. This **}
{** makes it easy to link the driver file directly into **}
{** then ESPTEST.EXE file. **}
{***********************************************************}
Interface
Procedure CGADRIVERPROC;
Implementation
Procedure CGADRIVERPROC; External;
{$L CGA.OBJ }
End.